@charset "utf-8";
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}
html{
	width: 100%;
	background-color: #fff;
    font-family: "Helvetica Neue",Helvetica,"Microsoft YaHei",Arial,Verdana,"Tohoma",Sans-serif,"Hiragino Sans GB","STHeitiSC-Light";
}
body {
    line-height: 1;
    min-height:100%;
    -webkit-text-size-adjust:100%;/*iPhone 和 Android 的浏览器纵向 (Portrate mode) 和橫向 (Landscape mode) 模式皆有自动调整字体大小的功能。控制它的就是 CSS 中的 -webkit-text-size-adjust。text-size-adjust 设为 none 或者 100% 关闭字体大小自动调整功能.*/
    -webkit-tap-highlight-color:transparent;/*比如在图片或者链接上，希望不出现被选中的颜色，可以怎么做呢？其实我们可以将属性-webkit-tap-highlight-color的值设置为透明就可以实现。当然也可以设置成其他颜色，也支持rgba*/
}
*:not(input,textarea) {
    -webkit-touch-callout: none;/*长按屏幕时会禁止设备弹出列表按钮*/
   /* -webkit-user-select: none;/*之所以放在这里是因为如果放到body中会导致个别Android机型（Google  Nexus，Android 4.2.2）输入框无法输入*/
}
*:focus {
outline:0;
-webkit-tap-highlight-color:transparent
}/*防止获取焦点时，出现边框*/
input:focus{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-user-modify:read-write-plaintext-only;
}
input[type="button"], input[type="submit"], input[type="reset"] {
-webkit-appearance: none;border-radius: 0;
}
select{-webkit-appearance:none;/*用来改变按钮和其他控件的外观,加上这个以后，select的高度就可以改变了。所以，当然也可以用于其他浏览器控件中*/
}
textarea {-webkit-appearance: none;}

ol,ul {list-style: none;}
a {text-decoration: none;}
a:hover {text-decoration: none;}
blockquote,q {quotes: none;}
a,button,input{-webkit-tap-highlight-color:rgba(255,0,0,0);}
blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none;
}
/* remember to highlight inserts somehow! */
ins {text-decoration: none;}
del {text-decoration: line-through;}
/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    font-size: 14px;
}

/* html {
    font-size: 10px;
}
@media screen and (min-width:320px) and (max-width: 359px) {
    html {
        font-size:10px;
    }
}
@media screen and (min-width:360px) and (max-width: 374px) {
    html {
        font-size:11.25px;
    }
}
@media screen and (min-width:375px) and (max-width: 413px) {
    html {
        font-size:11.72px;
    }
}
@media screen and (min-width:414px) and (max-width: 424px) {
    html {
        font-size:12.94px;
    }
}
@media screen and (min-width:425px) and (max-width: 479px) {
    html {
        font-size:13.28px;
    }
}
@media screen and (min-width:480px) and (max-width: 559px) {
    html {
        font-size:15px;
    }
}
@media screen and (min-width:560px) and (max-width: 639px) {
    html {
        font-size:17.5px;
    }
}
@media screen and (min-width:640px) {
    html {
        font-size:20px;
    }
}
body{
    background-color: #f5f5f5 !important;
    min-width: 320px;
} */

/*input中的placeholder文本样式*/
::-webkit-input-placeholder { color:#999; }
::-moz-placeholder { color:#999; } /* firefox 19+ */
:-ms-input-placeholder { color:#999; } /* ie */
input:-moz-placeholder { color:#999; }

.alignleft{text-align: left!important;}
.alignright{text-align: right!important;}

.puff_left {
    float: left !important;
}
.puff_right {
    float: right !important;
}
.clearfix {
    *zoom:1;
}
.clearfix:after{
    content: "";
    display: block;
    clear: both;
}

.clear_border {
    border: none !important;
}
.clear_bg {
    background: none !important;
}
.clear_margin{margin:0!important;}
.clear_padding{padding:0!important;}
.margin_left {
    margin-left: 0px !important;
}
.margin_top {
    margin-top: 0px !important;
}
.margin {
    margin: 0;
}
.color_border {
    border: 1px #ff6600 solid !important;
}

.dis_none {
    display: none;
}
.dis_block {
    display: block;
}
.dis_inlineblock {
    display: inline-block;
}
.dis_inline {
    display: inline;
}
.absolute {position: absolute!important;}
.relative {position: relative!important;}
.width100{width: 100%;}
.padding-01{padding: 0 1rem;}
/*字体对齐方式*/
.text_l {
    text-align: left !important;
}
.text_c {
    text-align: center !important;
}
.text_r {
    text-align: right !important;
}
/*字体颜色预设*/
.color_r {
    color: #f7350a !important;/*红色*/
}
.color_r2 {
    color: #f7350a !important;/*红色加粗*/
    font-weight: bold;
}
.color_w {
    color: #fff !important;/*白色*/
}
.color_d {
    color: #000 !important;/*黑色*/
}
.color_g {
    color: #b0b0b0 !important;/*灰色*/
}
.color_g2 {
    color: #378001 !important;/*绿色*/
}
.color_y {
    color: #ff5400 !important;/*橘黄色*/
}
.fontnormal{font-weight: normal!important;}

/*背景颜色预设*/
.bg_01 {
    background-color: #ca0b0b !important;/*红色*/
}
.bg_02 {
    background-color: #ffe79d !important;/*浅黄色*/
}
.bg_03 {
    background-color: #ff8712 !important;/*菊黄色*/
}
.bg_04 {
    background: #666 !important;/*灰色*/
    color: #fff !important;
}
.bg_05{
    background: #5bc0de!important;/*浅蓝色*/
}
.bg_06{background: #fff!important;}/*白色*/
.bg_fff{background: #fff!important;}/*白色*/
.red{color: red;}
.line1{height: 1rem;background: #fff;}
.line2{height: 1rem;}

.reveal-modal-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000;
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 0.8;
    filter: alpha(opacity: 50);
}
.reveal-modal-bg2 {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 100;
    top: 0;
    left: 0;
    opacity: 0.7;
    filter: alpha(opacity: 70);
}

h2.style{
    line-height: 2rem;
    color: #333;
    font-size: 1.4rem;
    text-align: left;
    padding:.5rem 1rem;
    background: #fff;
}
.wrong-a{
    line-height: 2.5rem;
    font-size: 1rem;
    color: #d9534f;
    display: block;
}


.empty{height: 200px;color: #999;background: #fff;font-size: 1.4rem;}
.over_h{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}/*需要定义宽和高*/
.over_more_line{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3/*行数*/;overflow: hidden;}/*需要定义宽和高*/
.over_more_line2{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2/*行数*/;overflow: hidden;}/*需要定义宽和高*/
.over_more_line4{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 4/*行数*/;overflow: hidden;}/*需要定义宽和高*/

.flex{
	display: flex;
	display: -webkit-flex;
}
.flex-1{
	flex: 1;
	-webkit-flex:1;
}
.flex_center{
	display: flex;
	justify-content: center;
	align-items: center;
}
.flex_r_between{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flex_r_between_end{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.flex_r_around{
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.flex_coum_center{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.flex_v_venter{
	display: flex;
	align-items: center;
}
.flex_r_venter{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.flex_r_end{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.flex_coum_between{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.flex_coum_end{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}
.flex-row{
	display: flex;
    display: -webkit-flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.flex-c{
	display: flex;
	align-items:center;
}
.center{
	display: flex;
	align-items:center;	
	justify-content: center;
}